From bfe84d206c754ec8db712b4fc62ec79b0c9f54a1 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 16 Sep 2006 17:56:11 +0000 Subject: [PATCH] (python-preoutput-filter): Fix arg order to string-match. --- lisp/progmodes/python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 712d75afff9..0387c05134e 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1289,7 +1289,7 @@ Don't save anything for STR matching `inferior-python-filter-regexp'." ;; Maybe we could be more selective here. (if (zerop (length res)) (not (bolp)) - (string-match res ".\\'")))) + (string-match ".\\'" res)))) ;; The need for this seems to be system-dependent: ;; What is this all about, exactly? --Stef ;; (if (and (eq ?. (aref s 0))) -- 2.30.2